home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / LPRng.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10522);
  10.  script_bugtraq_id(1712);
  11.  script_version ("$Revision: 1.13 $");
  12.  script_cve_id("CVE-2000-0917");
  13.  
  14.  name["english"] = "LPRng malformed input";
  15.  name["francais"] = "EntrΘes mal formΘes dans LPRng";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. LPRng seems to be running.
  20.  
  21. This daemon has a flaw (until version 3.6.24 at least) that would
  22. let anyone to remotely execute arbitrary commands on the server.
  23.  
  24. *** Nessus could not remotely determine with certainty that the 
  25. version of LPRng this machine is running is vulnerable or not.
  26.  
  27. Solution: Make sure that you are running version 3.6.25 or newer 
  28. and filter incoming connections to TCP port 515.
  29.  
  30. Risk factor : High";
  31.  
  32.     
  33.  desc["francais"] = "
  34. LPRng semble tourner.
  35.  
  36. Ce daemon (au moins jusqu'a la version 3.6.25) est vulnΘrable
  37. α un bug permettant d'executer de code arbitraire en tant que
  38. root, α distance.
  39.  
  40. *** Nessus ne peut dΘterminer α distance si une version
  41. *** vulnΘrable tourne
  42.  
  43. Solution : Assurez-vous de faire tourner LPRng 3.6.25 ou plus rΘcent, filtrez
  44. les connections vers ce port
  45. Facteur de risque : ElevΘ";
  46.  
  47.  
  48.  script_description(english:desc["english"], francais:desc["francais"]);
  49.  
  50.  summary["english"] = "Checks for a vulnerable version of LPRng";
  51.  summary["francais"] = "VΘrifie la prΘsence de LPRng";
  52.  script_summary(english:summary["english"], francais:summary["francais"]);
  53.  
  54.  script_category(ACT_GATHER_INFO);
  55.  
  56.  
  57.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  58.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  59.  family["english"] = "Gain a shell remotely";
  60.  family["francais"] = "Obtenir un shell α distance";
  61.  script_family(english:family["english"], francais:family["francais"]);
  62.  script_dependencie("find_service.nes");
  63.  script_require_ports(515);
  64.  exit(0);
  65. }
  66.  
  67.  
  68. if(get_port_state(515))
  69. {
  70. soc = open_sock_tcp(515);
  71. if(soc)
  72. {
  73.  snd = raw_string(9)+ string("lp") + raw_string(0x0A);
  74.  
  75.  send(socket:soc, data:snd);
  76.  r = recv(socket:soc, length:1024);
  77.  if("SPOOLCONTROL" >< r)
  78.  {
  79.   security_warning(515);
  80.  }
  81. }
  82. }
  83.